-
Notifications
You must be signed in to change notification settings - Fork 2
fix: disable redundant jreleaser signing #122
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
| mavenCentral { | ||
| create("maven-central") { | ||
| active = Active.ALWAYS // the Maven deployer default is ALWAYS, but MavenCentral is NEVER | ||
| sign = false // Signing is done when publishing, see the 'configurePublishing' function |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is the default value, we don't need to set it
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I read the documentation but I think it might be wrong. When I don't set it to false I get:
org.jreleaser.model.JReleaserException: JReleaser has not been properly configured.
deploy.maven.mavenCentral.maven-central.sign is set to `true` but the signing block is not enabled
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK we can configure it. Can you open a bug report to JReleaser?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will do
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Issue #, if available:
N/A
Description of changes:
Disables redundant artifacts signing done by JReleaser.
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.